home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / pcrte224.zip / SOURCE.ZIP / I8250.ASM < prev    next >
Assembly Source File  |  1992-06-09  |  1KB  |  37 lines

  1. ;;************************************************************************* 
  2. ;;                      i8250.asm      i8250.asm
  3. ;;*************************************************************************
  4. ;;
  5. ;;  Copyright (C) 1990 Vance Morrison
  6. ;;
  7. ;;
  8. ;; Permission to view, compile, and modify for LOCAL (intra-organization) 
  9. ;; USE ONLY is hereby granted, provided that this copyright and permission 
  10. ;; notice appear on all copies.  Any other use by permission only.
  11. ;;
  12. ;; Vance Morrison makes no representations about the suitability 
  13. ;; of this software for any purpose.  It is provided "as is" without expressed 
  14. ;; or implied warranty.  See the copywrite notice file for complete details.
  15. ;;
  16. ;;*****************************************************************************
  17. ;;
  18. ;;  This module just defines some code use in 8250 processing
  19. ;;  This is done in a seperate module because TASM cannot assemble it if
  20. ;;  it is not broken up.
  21. ;;
  22. ;;*****************************************************************************
  23.  
  24. ;; a fake entry so that this module will not produce errors if
  25. ;; the Point to pp stuff is not defined.  This entry is normally redefined
  26. ;; in pp.inc
  27. I8250_REAL_DEFINE MACRO dummy
  28. ENDM
  29.  
  30.     include declare.inc
  31.  
  32.     IRP idx,<1,2,3,4,5,6,7,8>
  33.         I8250_REAL_DEFINE idx         ;; try defining them all
  34.     endm
  35. END
  36.  
  37.